home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / machack / Hacks97 / WarriorsProgress.sit / Warrior’s Progress / source code / Source / Libraries / Events / Event Classes / Null Events / NullEvent.cp next >
Text File  |  1997-06-28  |  221b  |  15 lines

  1. // NullEvent.cp
  2.  
  3. #ifndef NullEvent_h
  4. #include "NullEvent.h"
  5. #endif
  6. #ifndef Delayer_h
  7. #include "Delayer.h"
  8. #endif
  9.  
  10. void NullEvent::Respond() const
  11.   {
  12.     Delayer::ScheduleTasks();
  13.     Postponer::Execute( Tick::Now() + 4 );
  14.   }
  15.